home *** CD-ROM | disk | FTP | other *** search
/ Keystone Learning XML: More On Content Modeling / Keystone learning XML More on Content Modeling.iso / Sample Files / Chapter 9 / Employees.mdb / employees.json next >
Encoding:
JavaScript Object Notation  |  1999-12-09  |  440 b 

  1. {
  2.     "schema": {
  3.         "id": "Text (50)",
  4.         "firstname": "Text (50) NOT NULL",
  5.         "lastname": "Text (50) NOT NULL",
  6.         "position": "Text (50) NOT NULL",
  7.         "street": "Text (50)",
  8.         "city": "Text (50)",
  9.         "state": "Text (50)",
  10.         "zip": "Text (50)"
  11.     },
  12.     "data": [
  13.         {
  14.             "id": "A1234",
  15.             "firstname": "John",
  16.             "lastname": "Doe",
  17.             "position": "Programmer",
  18.             "street": "123 Main Street",
  19.             "city": "Anywhere",
  20.             "state": "CA",
  21.             "zip": "92000"
  22.         },
  23.         {
  24.             "id": "A2345",
  25.             "firstname": "Jane",
  26.             "lastname": "Doe",
  27.             "position": "Systems Analyst"
  28.         }
  29.     ]
  30. }